home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 February: Technology Seed / Mac Tech Seed Feb '97.toast / OpenDoc 1.2b2c1 / OpenDoc / Interfaces / IDL / Foci.idl < prev    next >
Encoding:
Text File  |  1997-02-13  |  931 b   |  36 lines  |  [TEXT/MPS ]

  1. //#    Copyright:    © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
  2.  
  3. #ifndef _FOCI_
  4. #define _FOCI_
  5.  
  6. #ifndef _ODTYPESB_
  7. #include "ODTypesB.idl"
  8. #endif
  9.  
  10. #if defined(__SOMIDL__) && defined(EMIT_GLOBAL_CONSTANTS)
  11. #pragma somemittypes on
  12. #endif
  13.  
  14. // Focus Types for the Arbitrator. 
  15. // These strings are tokenized using ODSession::Tokenize()
  16.  
  17. const ODTypeToken kODNullFocus = 0;  // Returned by iterators. Ignored  
  18. const ODFocusType kODKeyFocus = "Key";  
  19. const ODFocusType kODMenuFocus = "Menu";  
  20. const ODFocusType kODSelectionFocus = "Selection";  
  21. const ODFocusType kODModalFocus = "Modal";  
  22. const ODFocusType kODMouseFocus = "Mouse";  
  23. const ODFocusType kODScrollingFocus = "Scrolling";  
  24. const ODFocusType kODClipboardFocus = "Clipboard";  
  25.  
  26. #if defined(__SOMIDL__) && defined(EMIT_GLOBAL_CONSTANTS)
  27. #pragma somemittypes off
  28. #endif
  29.  
  30. module OpenDoc_Foci 
  31. {
  32.     const string OpenDoc_Foci_Version = "1.0.";
  33. };
  34.  
  35. #endif // _FOCI_
  36.